👀 Reading hidden code
1000000
👀 Reading hidden code
n = 1000_000
0.323898
-0.525007
-0.526884
-0.288579
-0.122234
0.536784
-0.0620264
-0.714031
-0.0271074
0.532313
-0.000458997
0.368906
1.20855
0.142734
-0.624275
0.0956601
-0.338103
0.148782
0.324399
-0.877484
-0.193984
-0.51572
0.835937
0.711308
-0.442244
-0.479691
0.231984
0.171774
0.286026
0.349898
👀 Reading hidden code
0.37452
-1.64177
-0.129444
-0.636826
0.273234
-0.1697
-0.0937001
-0.340796
-0.331322
0.0379105
0.439743
-0.957795
0.590744
-0.0068167
0.379344
0.874562
0.038933
0.609471
-0.550102
0.0197504
0.691779
0.565739
-0.0387976
-0.155743
-0.442829
-0.231862
-0.443404
-0.526088
0.0523125
-0.090367
👀 Reading hidden code
scatter(x,y; marker_size=ms)
👀 Reading hidden code
Deprecated, use `AbstractPlutoDingetjes.Display.published_to_js(x)` instead of `PlutoRunner.publish_to_js(x)`.
Deprecated, use `AbstractPlutoDingetjes.Display.published_to_js(x)` instead of `PlutoRunner.publish_to_js(x)`.
using PlutoUI
👀 Reading hidden code
👀 Reading hidden code
Definition
👀 Reading hidden code
using HypertextLiteral
👀 Reading hidden code
scatter (generic function with 1 method)
scatter(x,y; kwargs...) = FastScatter(;x, y, kwargs...)
👀 Reading hidden code
👀 Reading hidden code
begin
Base.@kwdef struct FastScatter
x::Vector{<:Real}
y::Vector{<:Real}
color::String="#000000"
marker_size::Real=5
end
function Base.show(io::IO, m::MIME"text/html", f::FastScatter)
show(io, m, @htl("""
<div>
<canvas style="width: 100%; aspect-ratio: 1; border-radius: .6em;"></canvas>
<script>
const {default: createScatterplot} = await import('https://esm.sh/regl-scatterplot@1.2.3');
const canvas = currentScript.parentElement.querySelector("canvas")
const { width, height } = canvas.getBoundingClientRect();
const scatterplot = createScatterplot({
canvas,
width,
height,
pointSize: $(f.marker_size),
pointColor: [$(f.color)],
performanceMode: true,
});
const raw_x = $(Main.PlutoRunner.publish_to_js(convert(Vector{Float32}, f.x)))
const raw_y = $(Main.PlutoRunner.publish_to_js(convert(Vector{Float32}, f.y)))
const points = Array.prototype.map.call(raw_x, (x,i) => [x,raw_y[i]])
console.log(points.length, [...points[0]])
// const points = new Array(10000)
// .fill()
// .map(() => [-1 + Math.random() * 2, -1 + Math.random() * 2, 0]);
scatterplot.draw(points);
invalidation.then(() => {
// clear memory
points.length = 0
scatterplot.clear()
scatterplot.destroy()
})
</script>
</div>
"""))
end
end
👀 Reading hidden code
# begin
# Base.@kwdef struct FastScatter
# x
# y
# end
# function Base.show(io::IO, m::MIME"text/html", f::FastScatter)
# show(io, m, @htl("""
# <div>
# <canvas style="width: 100%; height: 300px"></canvas>
# <script>
# const {default: createScatterplot} = await import('https://esm.sh/regl-scatterplot@1.2.3');
# const raw_x = $(Main.PlutoRunner.publish_to_js(convert(Vector{Float32}, f.x)))
# const raw_y = $(Main.PlutoRunner.publish_to_js(convert(Vector{Float32}, f.y)))
# const points = Array.prototype.map.call(raw_x, (x,i) => [x,raw_y[i],0])
# console.log(points.length)
# </script>
# </div>
# """))
# end
# end
👀 Reading hidden code